Build an exploratory interactive map of California oil spill events in 2008 and create a chloroplethmap of the number of inland spill events by county.
# Create interactive map showing oil spill locations
tmap_mode("view")
tm_shape(ca_counties) +
tm_polygons() +
tm_shape(spill_data_sp) +
tm_dots()